home *** CD-ROM | disk | FTP | other *** search
Makefile | 2001-11-29 | 953 b | 40 lines |
- ## Process this file with automake to produce Makefile.in
-
- SUBDIRS = stack
-
- helpdatadir = $(gimpdatadir)/help/C/layers
-
- helpdata_DATA = \
- add_alpha_channel.html \
- alpha_to_selection.html \
- anchor_layer.html \
- apply_mask.html \
- delete_layer.html \
- delete_mask.html \
- duplicate_layer.html \
- flatten_image.html \
- index.html \
- layer_to_image_size.html \
- mask_to_selection.html \
- merge_down.html \
- using_layers.html
-
- EXTRA_DIST = $(helpdata_DATA)
-
- .PHONY: files install-data-hook
-
- files:
- @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
- echo $$p; \
- done
- @for subdir in $(SUBDIRS); do \
- files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
- for file in $$files; do \
- echo $$subdir/$$file; \
- done; \
- done
-
- install-data-hook:
- rm -f $(DESTDIR)$(helpdatadir)/dialogs
- $(LN_S) ../dialogs/layers $(DESTDIR)$(helpdatadir)/dialogs
-